home *** CD-ROM | disk | FTP | other *** search
/ Celebration Sounds / Celebration Sounds.iso / pc / startup / startup.dir / Lingo_11.ls < prev    next >
Encoding:
Text File  |  1997-11-07  |  408 b   |  23 lines

  1. on exitFrame
  2.   hInitialization()
  3.   hChangeCursor("arrow")
  4. end
  5.  
  6. on hInitialization
  7.   hInitializeVolume()
  8.   hInitiallizeDescriptionText()
  9. end
  10.  
  11. on hInitializeVolume
  12.   global gDefaultSoundLevel
  13.   if voidp(gDefaultSoundLevel) = 1 then
  14.     set gDefaultSoundLevel to the soundLevel
  15.     set the soundLevel to 4
  16.   end if
  17. end
  18.  
  19. on hInitiallizeDescriptionText
  20.   global gsDescriptionText
  21.   set gsDescriptionText to 7
  22. end
  23.